projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5039f79
)
* lisp/startup.el (command-line): Remove redundant set of no-blinking-cursor
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 14 Jan 2021 22:21:56 +0000
(17:21 -0500)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 14 Jan 2021 22:21:56 +0000
(17:21 -0500)
This was set when (or noninteractive emacs-basic-display), but
the code that sets `emacs-basic-display` also sets `no-blinking-cursor`
and `blink-cursor-mode`s value already tests `noninteractive`
alongside `no-blinking-cursor`.
lisp/startup.el
patch
|
blob
|
history
diff --git
a/lisp/startup.el
b/lisp/startup.el
index 0ad5c2f17966a9f201389075aeade9b883bc2ceb..932b3ffcd422e855c53e61a748a2ba5b099b6ac1 100644
(file)
--- a/
lisp/startup.el
+++ b/
lisp/startup.el
@@
-1288,8
+1288,7
@@
please check its value")
(if (or noninteractive emacs-basic-display)
(setq menu-bar-mode nil
tab-bar-mode nil
- tool-bar-mode nil
- no-blinking-cursor t))
+ tool-bar-mode nil))
(frame-initialize))
(when (fboundp 'x-create-frame)